API-CHANGES.txt 20 KB

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