API-CHANGES.txt 20 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081
  1. 0.24.1:
  2. * Deprecate Behavior >> javascriptConstructor(:)
  3. * Deprecate IRInstruction >> needsBoxingAsReceiver
  4. * Deprecate VariableNode >> value(:)
  5. * Deprecate #isImmutable in AST nodes and scope vars
  6. * Split into #isIdempotent / #isAssignable.
  7. * UnknownVar => ExternallyKnownVar
  8. * Remove all typechecking #isFoo methods in ScopeVar hierarchy.
  9. * Remove most of typechecking #isFoo methods in ASTNode hierarchy.
  10. * Added Teachable class.
  11. * Added IRAliasFactory helper class.
  12. + Behavior >>
  13. + alternateConstructorViaSelector:
  14. + applySuperConstructorOn:withArguments:
  15. + beJavaScriptSubclassOf:
  16. + javaScriptConstructor
  17. + javaScriptConstructor:
  18. + BlockClosure >>
  19. + tryIfTrue:catch:
  20. + BlockNode >>
  21. + dagChild
  22. + sequenceNode
  23. + sequenceNode:
  24. + IRInstruction >>
  25. + asReceiver
  26. + IRMethod >>
  27. + aliasFactory
  28. + IRValue >>
  29. + asReceiver
  30. + IRVariable >>
  31. + asReceiver
  32. + MethodNode >>
  33. + dagChild
  34. + sequenceNode:
  35. + PseudoVar
  36. + asReceiver
  37. + ReturnNode >>
  38. + dagChild
  39. + expression
  40. + expression:
  41. + SemanticAnalyzer >>
  42. + errorInvalidAssignment:
  43. + isVariableKnown:inPackage:
  44. + ScopeVar >>
  45. + asReceiver
  46. + isExternallyKnownVar
  47. + SendNode >>
  48. + beSideEffect
  49. + isSideEffect
  50. + SequenceableCollection >>
  51. + copyWithFirst:
  52. + SmalltalkImage >>
  53. + isError:
  54. + try:ifTrue:catch:
  55. + VariableNode >>
  56. + identifier
  57. + identifier:
  58. + amber/boot api >>
  59. + detachClass(klass)
  60. + amber/helpers exports >>
  61. + $nil
  62. - AliasVar >>
  63. - node
  64. - node:
  65. - Error >>
  66. - beSmalltalkError
  67. - isSmalltalkError
  68. - IRASTTranslator >>
  69. - nextAlias
  70. - IRInstruction >>
  71. - isSelf
  72. - IRValue >>
  73. - needsBoxingAsReceiver
  74. - IRVariable >>
  75. - isSelf
  76. - needsBoxingAsReceiver
  77. - JavaScriptError >>
  78. - shouldBeStubbed
  79. - wrap
  80. - MethodContext >>
  81. - stubHere
  82. - stubToAtMost:
  83. - MethodLexicalScope >>
  84. - unknownVariables
  85. - PseudoVar >>
  86. - isSelf
  87. - ScopeVar >>
  88. - isSelf
  89. - validateAssignment
  90. - SemanticAnalyzer >>
  91. - isVariableUndefined:inPackage:
  92. - SendNode >>
  93. - shouldBeInlined
  94. - shouldBeInlined:
  95. - VariableNode >>
  96. - beAssigned
  97. - isArgument
  98. - amber/boot api >>
  99. - addElement(arraySet, el)
  100. - removeElement(arraySet, el)
  101. 0.23.2:
  102. + Platform class >>
  103. + fetch:
  104. + fetchUrl:options:
  105. + BrowserPlatform >>
  106. + fetch:
  107. + fetchUrl:options:
  108. + NodePlatform >>
  109. + fetch:
  110. + fetchUrl:options:
  111. 0.23.1:
  112. + TBehaviorDefaults >>
  113. + includingPossibleMetaDo:
  114. + Class >>
  115. + includingPossibleMetaDo:
  116. + CompiledMethod >>
  117. + origin
  118. - SmalltalkImage >>
  119. - includesKey:
  120. 0.23.0:
  121. * Namespace change: amber_core => amber/core.
  122. * amber/boot api addClass only takes 3 params; 4 param version deprecated
  123. + SmalltalkImage >>
  124. + beClean
  125. + amber/helpers exports >>
  126. + beClean
  127. + amber/boot api >>
  128. + setSlots(klass, arrayOfNames)
  129. 0.22.4:
  130. * Remove class IndexableCollection, trait TKeyValueCollection.
  131. * Merge CharacterArray class into String class
  132. * Deprecate CharacterArray class
  133. * Deprecate Collection >> copyWithAll:, #, is enough.
  134. + amber/helpers exports
  135. + loadPackages
  136. - Array >>
  137. - numericallyIndexable
  138. - Set
  139. - detect:ifNone: (pushed up to Collection)
  140. - SequenceableCollection
  141. - numericallyIndexable
  142. - String >>
  143. - numericallyIndexable
  144. 0.22.1:
  145. + BlockClosure >>
  146. + provided
  147. + Class >>
  148. + provided
  149. 0.22.0:
  150. * Deprecate Exception >> resignal. Should have been #pass.
  151. + Compiler >>
  152. + ast:forClass:protocol:
  153. + cleanCodeGenerator
  154. + codeGenerator
  155. + forClass:protocol:
  156. + Exception
  157. + outer
  158. + pass
  159. + JSObjectProxy >>
  160. + removeKey:
  161. + Number >>
  162. + ln1p
  163. + SmalltalkImage >>
  164. + postLoad
  165. - AmberBootstrapInitialization class >>
  166. - initializeClasses
  167. - ClassBuilder >>
  168. - setupClass:
  169. - Compiler >>
  170. - compileNode:forClass:package:
  171. - ProtoObject
  172. - asJSON
  173. - asJavascript
  174. - SmalltalkImage >>
  175. - packageAt:
  176. - amber/boot api >>
  177. - nextId
  178. 0.21.1:
  179. + ClassBuilder >>
  180. + class:instanceVariables:
  181. + JSObjectProxy class >>
  182. + null
  183. + undefined
  184. - ClassBuilder >>
  185. - basicClass:instanceVariableNames:
  186. 0.21.0:
  187. * Deprecate SmalltalkImage >> existsJsGlobal:
  188. + Number >>
  189. + bitAnd:
  190. + bitNot
  191. + bitOr:
  192. + bitXor:
  193. + printStringBase:
  194. + Platform class >>
  195. + includesGlobal:
  196. 0.20.0:
  197. * Internal kernel fields naming changes.
  198. + amber/boot api >>
  199. + traitsOrClasses
  200. - SmalltalkImage >>
  201. - legacyGlobalJsVariables
  202. - amber/boot >>
  203. - nil
  204. - dnu
  205. - amber/boot api >>
  206. - classes
  207. 0.19.1:
  208. * Deprecate amber/boot api nextId, prop globalJsVariables.
  209. * Deprecate ProtoObject >> identityHash.
  210. * Deprecate SmalltalkImage >> packageAt: in favour of explicit #packageAt:if{Absent,Present}:.
  211. + AmberBootstrapInitialization class >>
  212. + run
  213. + initializeClasses
  214. + organizeClasses
  215. + organizeMethods
  216. + Behavior >>
  217. + basicOrganization
  218. + basicOrganization:
  219. + ClassOrganizer >>
  220. + theClass
  221. + ClassOrganizer class >>
  222. + on:
  223. + Compiler class >>
  224. + eval:
  225. + JavaScriptException >>
  226. + shouldBeStubbed
  227. + wrap
  228. + Message class >>
  229. + selector:arguments:notUnderstoodBy:
  230. + MethodContext >>
  231. + stubHere
  232. + stubToAtMost:
  233. + NonBooleanReceiver class >>
  234. + signalOn:
  235. + Package >>
  236. + evalBlock
  237. + evalBlock:
  238. + Package class >>
  239. + named:javaScriptDescriptor:
  240. + SmalltalkImage >>
  241. + packageDictionary
  242. + packageAt:ifPresent:
  243. + TBehaviorProvider >>
  244. + methodOrganizationEnter:andLeave:
  245. + TMasterBehavior >>
  246. + definedMethods
  247. + enterOrganization
  248. + leaveOrganization
  249. + Trait >>
  250. + basicOrganization
  251. + basicOrganization:
  252. + UndefinedObject >>
  253. + ==
  254. + Number >>
  255. + min:max:
  256. + degreesToRadians
  257. + radiansToDegrees
  258. + arcTan:
  259. + between:and:
  260. + Number class >>
  261. + radiansPerDegree
  262. + Point >>
  263. + dotProduct:
  264. + normal
  265. + angle
  266. + normalized
  267. + r
  268. + corner:
  269. + extent:
  270. + rectangle:
  271. + Rectangle >>
  272. + =
  273. + corner
  274. + origin
  275. + containsPoint:
  276. + containsRect:
  277. + printOn:
  278. + Rectangle class >>
  279. + origin:corner:
  280. + origin:extent:
  281. + point:point:
  282. - Package >>
  283. - basicName:
  284. - basicImports
  285. - ProtoObject >>
  286. - isSameInstanceAs:
  287. - ObjectTest >>
  288. - testIdentityHash
  289. - amber/boot api >>
  290. - reservedWords (with the hope no one uses it directly)
  291. 0.19.0:
  292. * Remove class Thenable, add trait TThenable.
  293. * Behavior / Trait hierarchy uses traits.
  294. + NativeFunction class >>
  295. + isNativeFunction:
  296. + IRInstructions >>
  297. + isSelf
  298. + isSuper
  299. + IRVariable >>
  300. + isSelf
  301. + isSuper
  302. + ScopeVar >>
  303. + isSelf
  304. + isSuper
  305. + PseudoVar >>
  306. + isSelf
  307. + isSuper
  308. +UndefinedObject >>
  309. + identityHash
  310. + value
  311. + amber/boot >>
  312. + nilAsValue
  313. - IRSend >>
  314. - isSuperSend
  315. 0.18.3:
  316. * Move {add,remove}Element from Array.prototype to kernel API.
  317. * New superclass of Behavior named BehaviorBody, pushed up some methods.
  318. * Represents named holder of methods; hierarchy and instantiation left to Behavior.
  319. * Add class Trait as subclass of BehaviorBody.
  320. * Add class TraitTransformation.
  321. * Deprecate #asJSON in favour of #asJavaScriptObject.
  322. * Deprecate #asJavascript in favour of #asJavaScriptSource.
  323. + BehaviorBody >>
  324. + setTraitComposition:
  325. + traitCompositionDefinition
  326. + traitUsers
  327. + allSubclassesDo:
  328. + superclass
  329. + Trait >>
  330. + allInstanceVariableNames
  331. + allSubclassesDo:
  332. + asJavascript
  333. + asTraitComposition
  334. + category
  335. + classTag
  336. + definition
  337. + package
  338. + superclass
  339. + theMetaClass
  340. + theNonMetaClass
  341. + exportBehaviorDefinitionTo:using:
  342. + traitUsers
  343. + package:
  344. + Trait class >>
  345. + named:package:
  346. + named:uses:package:
  347. + TraitTransformation >>
  348. + -
  349. + @
  350. + addAliases:
  351. + addExclusions:
  352. + aliases
  353. + asJSON
  354. + asJavascript
  355. + asTraitComposition
  356. + asTraitTransformation
  357. + definition
  358. + exclusions
  359. + initialize
  360. + postCopy
  361. + trait
  362. + trait:
  363. + Collection >>
  364. + copyWithout:
  365. + SequenceableCollection >>
  366. + reverseDo:
  367. + Array >>
  368. + asTraitComposition
  369. + amber/boot api >>
  370. + addElement
  371. + removeElement
  372. + wrapJavaScript
  373. + CharacterArray >>
  374. + asSymbolPrintOn:
  375. + symbolPrintString
  376. + String >>
  377. + isSelector
  378. + StringStream >>
  379. + print:
  380. + printSymbol:
  381. + Package >>
  382. + traitCompositions
  383. + Class >>
  384. + subClass:
  385. + subClass:uses:
  386. + subClass:uses:instanceVariables:
  387. + subClass:uses:instanceVariables:category:
  388. + subClass:uses:instanceVariables:classVariables:poolDictionaries:category:
  389. + subClass:uses:instanceVariables:package:
  390. + UndefinedObject >>
  391. + subClass:
  392. + subClass:uses:
  393. + subClass:uses:instanceVariables:
  394. + subClass:uses:instanceVariables:category:
  395. + subClass:uses:instanceVariables:classVariables:poolDictionaries:category:
  396. + subClass:uses:instanceVariables:package:
  397. + Metaclass >>
  398. + uses:instanceVariableNames:
  399. - Association >>
  400. - importsString
  401. - String >>
  402. - importsString
  403. - AbstractExporter
  404. - classNameFor:
  405. - Exporter >>
  406. - jsClassNameFor:
  407. 0.18.2:
  408. * Add Platform-DOM package with DOM-related stuff.
  409. * Platform-DOM not loaded by default. Packages that will use it will import it.
  410. + PlatformDom class >>
  411. + isFeasible
  412. + isDomNode:
  413. + newCustomEvent:detail:
  414. + toArray:
  415. + CharacterArray >>
  416. + asDomNode
  417. + Collection >>
  418. + asDomNode
  419. + JSObjectProxy >>
  420. + asDomNode
  421. + String >>
  422. + htmlTextContent
  423. 0.18.1:
  424. + ASTNode >>
  425. + withTail:
  426. - SendNode >>
  427. - valueWithReceiver:
  428. 0.18.0:
  429. * Remove class RethrowErrorHandler (hack for cli before 0.12.3).
  430. * Add Kernel-Dag package with abstract DAG-node and DAG-node visitor.
  431. * Some internal API changes in Compiler-* (including the move to DAG-node).
  432. - Object >>
  433. - throw:
  434. 0.17.0:
  435. * Remove classes InterfacingObject, PlatformInterface.
  436. * Deprecate $boot.nil (use $boot.nilAsReceiver).
  437. + amber/boot >>
  438. + nilAsReceiver
  439. - NativeFunction class >>
  440. - constructor:
  441. - constructor:value:
  442. - constructor:value:value:
  443. - constructor:value:value:value:
  444. 0.16.1:
  445. * Deprecate $boot.dnu (use $boot.nilAsClass).
  446. + amber/boot >>
  447. + nilAsClass
  448. 0.16.0:
  449. * Deprecate ClassBuilder >> setupClass:
  450. * $core.initialize now returns a Promise
  451. * $core.addClass now returns the class
  452. + amber/boot api >>
  453. + send2
  454. + traverseClassTree
  455. + Promise class >>
  456. + new
  457. - amber/boot api >>
  458. - wrapClassName
  459. - send
  460. - allSubclasses
  461. - AbstractCodeGenerator >>
  462. - classNameFor:
  463. 0.15.1:
  464. * Thenable class added
  465. * Promise class added, wraps JS Promise, subclass of Thenable
  466. + Thenable >>
  467. + catch:
  468. + on:do:
  469. + on:do:catch:
  470. + then:
  471. + then:catch:
  472. + then:on:do:
  473. + then:on:do:catch:
  474. + JSObjectProxy >>
  475. + catch:
  476. + on:do:
  477. + on:do:catch:
  478. + then:
  479. + then:catch:
  480. + then:on:do:
  481. + then:on:do:catch:
  482. + amber/boot api >>
  483. + seamless
  484. + Promise class >>
  485. + new:
  486. + forBlock:
  487. + value:
  488. + signal:
  489. + all:
  490. + any:
  491. 0.14.18:
  492. * Some internal API changes in Compiler-*.
  493. 0.14.14:
  494. * InterfacingObject >> ajax: deprecated
  495. * PlatformInterface class deprecated
  496. * Class BrowserInterface removed
  497. * Class Terminal, BrowserTerminal added
  498. * Class Platform, BrowserPlatform added
  499. + Environment >>
  500. + renamePackage:to:
  501. + Platform class >>
  502. + globals
  503. + newXhr
  504. + Terminal class >>
  505. + alert:
  506. + confirm:
  507. + prompt:
  508. + prompt:default:
  509. SmalltalkImage >>
  510. + existsJsGlobal:
  511. - PlatformInterface class >>
  512. - initialize
  513. - setWorker:
  514. 0.14.12:
  515. + JSObjectProxy >>
  516. + putOn:
  517. + ProtoStream >>
  518. + nextPutJSObject:
  519. 0.14.11:
  520. * Basic streaming protocol extracted from Stream to ProtoStream
  521. + Object >>
  522. + in:
  523. + JSObjectProxy >>
  524. + in:
  525. 0.14.10:
  526. + JSObjectProxy class >>
  527. + addObjectVariablesTo:ofProxy:
  528. + compareJSObjectOfProxy:withProxy:
  529. + forwardMessage:withArguments:ofProxy:
  530. + jsObject:ofProxy:
  531. + lookupProperty:ofProxy:
  532. - JSObjectProxy >>
  533. - jsObject:
  534. - lookupProperty:
  535. - compareJSObjectWith:
  536. - addObjectVariablesTo:
  537. - forwardMessage:withArguments:
  538. 0.14.4:
  539. + AmdExporter >>
  540. + importsForOutput:
  541. + AbstractCodeGenerator >>
  542. + currentPackage
  543. + currentPackage:
  544. + Compiler >>
  545. + currentPackage
  546. + currentPackage:
  547. + compile:forClass:protocol:
  548. + compileNode:forClass:package:
  549. + SemanticAnalyzer >>
  550. + thePackage
  551. + thePackage:
  552. + isVariableUndefined:inPackage:
  553. - Compiler >>
  554. - compile:
  555. - compile:forClass:
  556. - compileExpression:
  557. - SemanticAnalyzer >>
  558. - isVariableGloabllyUndefined:
  559. - Behavior >>
  560. - compile:
  561. 0.14.3:
  562. * #heliosClass is now #classTag
  563. + Compiler >>
  564. + eval:forPackage:
  565. + Behavior >>
  566. + packageOfProtocol:
  567. + Exporter >>
  568. + exportPackageContextOf:on:
  569. + exportPackageImportsOf:on:
  570. + Package >>
  571. + basicImports
  572. + imports
  573. + imports:
  574. + importsDefinition
  575. + importsFromJson:
  576. + importsAsJson
  577. + sortedImportsAsArray
  578. + validateImports:
  579. + Package class >>
  580. + named:imports:transport:
  581. + Association >>
  582. + importsString
  583. + String >>
  584. + importsString
  585. + ProtoObject >>
  586. + ifNil:
  587. + ifNil:ifNotNil:
  588. + ifNotNil:
  589. + ifNotNil:ifNil:
  590. + isNil
  591. + notNil
  592. - Object >>
  593. - ifNil:
  594. - ifNil:ifNotNil:
  595. - ifNotNil:
  596. - ifNotNil:ifNil:
  597. - isNil
  598. - notNil
  599. 0.14.1:
  600. * NativeFunction class >> constructor:[value:...] deprecated
  601. + NativeFunction class >>
  602. + constructorNamed:
  603. + constructorNamed:value:
  604. + constructorNamed:value:value:
  605. + constructorNamed:value:value:value:
  606. + constructorOf:
  607. + constructorOf:value:
  608. + constructorOf:value:value:
  609. + constructorOf:value:value:value:
  610. + functionNamed:
  611. + functionNamed:value:
  612. + functionNamed:value:value:
  613. + functionNamed:value:value:value:
  614. + functionNamed:valueWithArgs:
  615. + functionOf:
  616. + functionOf:value:
  617. + functionOf:value:value:
  618. + functionOf:value:value:value:
  619. + functionOf:valueWithArgs:
  620. + methodOf:this:
  621. + methodOf:this:value:
  622. + methodOf:this:value:value:
  623. + methodOf:this:value:value:value:
  624. + methodOf:this:valueWithArgs:
  625. + SmalltalkImage >>
  626. + optOut:
  627. + cancelOptOut:
  628. 0.14.0:
  629. + Object >>
  630. + asJQuery
  631. + asJQueryInContext:
  632. + BlockClosure >>
  633. + asJQuery
  634. + asJQueryInContext:
  635. - AnnouncementSubscription >>
  636. - block
  637. - block:
  638. - Collection >>
  639. - contains:
  640. - String >>
  641. - asSelector
  642. - asJavaScriptSelector
  643. - SmalltalkImage >>
  644. - at:
  645. - at:ifAbsent:
  646. - at:put:
  647. - current
  648. - vm
  649. - createPackage:properties:
  650. - MethodContext >>
  651. - temps
  652. - Object >>
  653. - try:catch:
  654. 0.13.2:
  655. + SourceArea class >>
  656. + codeMirror
  657. 0.13.1:
  658. * String >> asSelector is now String >> asJavaScriptMethodName
  659. * String >> asJavaScriptSelector is now String >> asJavaScriptPropertyName
  660. * smalltalk.selector is now smalltalk.st2js
  661. * smalltalk.convertSelector is now smalltalk.js2st
  662. * Collection >> ifEmpty:ifNotEmpty: family passes self to ifNotEmpty: block
  663. * Smalltalk vm is now Smalltalk core
  664. * boot.js's .vm is now .api
  665. * amber load sets' .vm is now .api
  666. * Internal variables smalltalk/globals/_st are now $core/$globals/$recv
  667. + smalltalk.
  668. + accessJavaScript
  669. + Object >>
  670. + postMessageTo:
  671. + postMessageTo:origin:
  672. + Class >>
  673. + heliosClass
  674. + SmalltalkImage >>
  675. + core
  676. + amber/boot
  677. + api
  678. + amber/{devel,deploy,lang} exports
  679. + api
  680. - ProtoObject class >>
  681. - heliosClass
  682. - Object class >>
  683. - heliosClass
  684. - amber/boot
  685. - vm
  686. 0.12.6:
  687. + String >>
  688. + value:
  689. + ProtocolAnnouncement >>
  690. + package
  691. + Behavior >>
  692. + isTestClass
  693. + Package >>
  694. + isTestPackage
  695. + amber/{devel,deploy,lang} exports
  696. + nil
  697. + amber/helpers exports
  698. + nil
  699. 0.12.4:
  700. * Package Canvas renamed to Web
  701. * Object >> try:catch: deprecated in favour of BlockClosure >> tryCatch:
  702. + Announcer >>
  703. + on:do:for:
  704. + Node >>
  705. + navigationNodeAt:ifAbsent:
  706. + BlockClosure >>
  707. + tryCatch:
  708. + Environment >>
  709. + evaluate:for:
  710. + AmberCli >>
  711. + version:
  712. + Object >>
  713. + deprecatedAPI:
  714. - Environment >>
  715. - eval:on:
  716. - evaluateString:on:
  717. 0.12.3:
  718. * Package Import-Export renamed to Kernel-ImportExport
  719. * A dozen of methods moved from Object to ProtoObject
  720. * HashedCollection >> at:ifAbsentPut: pushed up to SequenceableCollection
  721. * HashedCollection >> , is now allowed (removed shouldNotImplement)
  722. * HashedCollection and Dictionary both subclasses of AssociativeCollection
  723. * Smalltalk class moved to SmalltalkImage class, Smalltalk is now global var
  724. * Smalltalk current deprecated in favour of Smalltalk
  725. * Smalltalk at:[put:] deprecated in favour of Smalltalk globals at:[put:]
  726. * <smalltalk.ClassName> deprecated in favour of <globals.ClassName>
  727. + CompiledMethod >>
  728. + defaultProtocol
  729. + Behavior >>
  730. + compile:protocol:
  731. + removeProtocolIfEmpty:
  732. + Package >>
  733. + load
  734. + loadFromNamespace:
  735. + Package class >>
  736. + load:
  737. + load:fromNamespace:
  738. + PackageTransport >> load
  739. + PackageHandler >> load:
  740. + AmdPackageHandler >> load:
  741. + Set >> removeAll
  742. + AssociativeCollection class
  743. + BucketStore class
  744. + SmalltalkImage >>
  745. + globals
  746. + vm
  747. + settings
  748. + Setting class
  749. + String >>
  750. + asSetting
  751. + asSettingIfAbsent:
  752. + settingValue
  753. + settingValueIfAbsent:
  754. + settingValue:
  755. + Smalltalk global variable
  756. - CompiledMethod >>
  757. - category: (use #protocol:)
  758. - defaultCategory
  759. - Behavior >> compile:category:
  760. - HTMLCanvas class >>
  761. - browserVersion
  762. - isMSIE
  763. - isMozilla
  764. - isOpera
  765. - isWebkit
  766. 0.12.2:
  767. * Collection >> contains: is deprecated in favor of anySatisfy:
  768. + Announcer >> on:doOnce:
  769. + String >>
  770. + uriEncoded
  771. + uriDecoded
  772. + uriComponentEncoded
  773. + uriComponentDecoded
  774. + Collection >>
  775. + removeAll
  776. + ifEmpty:ifNotEmpty:
  777. + ifNotEmpty:ifEmpty:
  778. + anyOne
  779. + noneSatisfy:
  780. + anySatisfy:
  781. + allSatisfy:
  782. 0.12.0:
  783. * SmalltalkMethodContext.prototype.fillBlock() takes a third 'index' parameter
  784. * Existing classes moved to new KernelInfrastructure package
  785. * ImporterExporter
  786. * are now StreamExporters
  787. * aware of AMD namespaces
  788. * support transport types and commit channels
  789. + Node >>
  790. + nextChild
  791. + method
  792. + postCopy
  793. + isCascadeNode
  794. + isLastChild
  795. + BlockNode >>
  796. + nextNode:
  797. + nextChild
  798. + SendNode >>
  799. + isCascadeSendNode
  800. + shouldBeAliased
  801. + CompiledMethod >> sendTo:arguments:
  802. + Array >>
  803. + addFirst:
  804. + removeLast
  805. + Number >>
  806. + ceiling
  807. + floor
  808. + asNumber
  809. + //
  810. + cos
  811. + sin
  812. + tan
  813. + arcCos
  814. + arcSin
  815. + arcTan
  816. + log
  817. + log:
  818. + raisedTo:
  819. + sign
  820. + **
  821. + ln
  822. + e
  823. + String class >> esc
  824. + String >>
  825. + asMutator
  826. + capitalized
  827. + isCapitalized
  828. + JSProxy >> printString
  829. + Behavior >>
  830. + ownProtocols
  831. + ownMethods
  832. + JSStream >> nextPutSendIndexFor:
  833. + InterfacingObject class
  834. + Interpreter class
  835. + DocumentFragmentTag class
  836. + AbstractExporter class
  837. + PlatformInterface class
  838. - Node >> extent
  839. - JSStream >> nextPutStatement:with:
  840. - Smalltalk.installSuperclass()
  841. - ClassReferenceNode class (now handled via VariableNode)
  842. 0.11.0:
  843. * AnnouncementSubscription use #valuable: instead of #block: (deprecated)
  844. * AbstractCodeGenerator inherits from Object, not NodeVisitor
  845. * Object>>printString
  846. * replace >>printString with >>printOn:
  847. * replace >>storeString with >>printString
  848. * PackageLoader is now PackageHandler (>>commit: >>setupPackagenamed:prefix: >>ajaxPutAt:data:
  849. * Package>>fetch: is now Package>>load:
  850. * Package>>fetch:prefix: is now Package>>load:prefix:
  851. * Queue>>front replaced by Queue>>next
  852. * Queue>>frontIfAbsent: replaced by Queue>>nextIfAbsent:
  853. * Queue>>back: replaced by Queue>>nextPut:
  854. * smalltalk.addMethod() does not use explicit JS selector
  855. * JSObjectProxy>>canForwardMessage: replaced by use of JSObjectProxy>>lookupProperty: with asJavaScriptSelector
  856. * JSObjectProxy>>forwardMessage: replaced by explicit JSObjectProxy>>forwardMessage:withArguments:
  857. * String>>asJavaScriptSelector moved to Kernel-Objects package
  858. + Object>>asString
  859. + Object>>putOn:
  860. + String>>isVowel
  861. + Collection>>putOn:
  862. + CharacterArray>>putOn:
  863. + Stream>><<
  864. + Stream>>write
  865. + SequenceableCollection>>newStream
  866. + SequenceableCollection>>readStream
  867. + SequenceableCollection>>stream
  868. + SequenceableCollection>>streamClass
  869. + SequenceableCollection>>writeStream
  870. + Collection>>isImmutable
  871. + Stream>>nextPutString:
  872. + StringStream>>nextPutString:
  873. + JSStream>>nextPutClassRefFunction:
  874. + String>>crlfSanitized
  875. + inlined Block now also responds to >>value:
  876. + Parser: split literal into runtimeLiteral and parseTimeLiteral
  877. + Parser: write #(4 #(5 6 #()) 7) as #(4 (5 6 ()) 7)
  878. + Parser: write #(#on:do: #Object) as #(on:do: Object)
  879. + Parser: Symbols for binarie selectores
  880. + Package>>commit
  881. + AIContext>>initializeLocals
  882. + ASTInterpreter>>withBlockContext:
  883. + smalltalk.allSelectors()
  884. + Object>>isCompiledMethod
  885. + Object>>isPackage
  886. + Object>>isBehavior
  887. + ClassMoved Announcemen class
  888. + Behavior>>includesBehavior:
  889. + Environment>>classes
  890. + Environment>>allSelectors
  891. + Environment>>removeProtocol:
  892. + Environment>>renameProtocol:to:in:
  893. + CompiledMethod>>protocol:
  894. + Smalltalk>>globalJsVariables
  895. + Smalltalk>>addGlobalJsVariable:
  896. + Smalltalk>>deleteGlobalJsVariable:
  897. - Object>>storeOn:
  898. - Object>>log:block:
  899. - Object>>printNl
  900. - Compiler-IR.st >>javascriptSelector
  901. - Compiler-IR.st >>nextPutVar:
  902. - Kernel-Collections.st >>asSuperSelector
  903. - Collection>>readStream
  904. - Collection>>stream
  905. - Collection>>streamClass
  906. - Collection>>writeStream
  907. - Symbol class (replaced with String)
  908. - IRInlinedNonLocalReturn class
  909. - IRInlinedSend>>nonLocalReturnInliner
  910. - IRNonLocalReturnInliner class
  911. - Package>>dependencies
  912. - Package>>dependencies:
  913. - Package>>properties
  914. - Package>>jsProperties
  915. - Package>>jsProperties:
  916. - Package>>propertiesAsJSON
  917. - Package>>propertyAt:
  918. - Package>>propertyAt:ifAbsent:
  919. - Package>>propertyAt:put:
  920. - Browser>>ajaxPutAt:data: